print("morph script ran successfully") print("morphs:\nnekoballer\nwhat\nbox\nNone") local BOXDESCRIPTION = Instance.new("HumanoidDescription") BOXDESCRIPTION.RunAnimation = 837009922 BOXDESCRIPTION.WalkAnimation = 837010234 BOXDESCRIPTION.SwimAnimation = 837012509 BOXDESCRIPTION.JumpAnimation = 837011171 BOXDESCRIPTION.IdleAnimation = 837011741 BOXDESCRIPTION.FallAnimation = 837010685 BOXDESCRIPTION.NeckAccessory = 10392950271 BOXDESCRIPTION.HatAccessory = "9366016277,11663453976" BOXDESCRIPTION.BackAccessory = 6202525378 BOXDESCRIPTION.RightLegColor = Color3.fromRGB(105, 64, 40) BOXDESCRIPTION.LeftLegColor = Color3.fromRGB(105, 64, 40) BOXDESCRIPTION.LeftArmColor = Color3.fromRGB(226, 155, 64) BOXDESCRIPTION.RightArmColor = Color3.fromRGB(226, 155, 64) BOXDESCRIPTION.HeadColor = Color3.fromRGB(226, 155, 64) BOXDESCRIPTION.TorsoColor = Color3.fromRGB(160, 95, 53) local nekoballer = Instance.new("HumanoidDescription") nekoballer.Face = 7074991 nekoballer.HatAccessory = 6885485391 nekoballer.NeckAccessory = 6202651419 nekoballer.WaistAccessory = 9363116149 nekoballer.HeadColor = Color3.fromRGB(255, 255, 0) nekoballer.LeftArmColor = Color3.fromRGB(255, 255, 0) nekoballer.RightArmColor = Color3.fromRGB(255, 255, 0) nekoballer.TorsoColor = Color3.fromRGB(255, 0, 4) nekoballer.RightLegColor = Color3.fromRGB(49, 49, 49) nekoballer.LeftLegColor= Color3.fromRGB(49, 49, 49) nekoballer.Shirt = 6648528556 nekoballer.Pants = 5948551999 local CurrentMorph = "none" owner.Chatted:Connect(function(msg) if string.sub(msg,1,6) == "morph-" then if string.sub(msg,7,11) == "box" then CurrentMorph = "box" pcall(function() owner.Character:WaitForChild("Humanoid"):ApplyDescriptionReset(BOXDESCRIPTION) end) elseif string.sub(msg,7,12) == "none" then CurrentMorph = "none" owner:LoadCharacter() elseif string.sub(msg,7,7+10) == "nekoballer" then owner.Character:WaitForChild("Humanoid"):ApplyDescriptionReset(nekoballer) end end end) owner.CharacterAdded:Connect(function() delay(0.2,function() pcall(function() if CurrentMorph == "box" then owner.Character:WaitForChild("Humanoid"):ApplyDescriptionReset(BOXDESCRIPTION) elseif CurrentMorph == "nekoballer" then owner.Character:WaitForChild("Humanoid"):ApplyDescriptionReset(nekoballer) end end) end) end)